home *** CD-ROM | disk | FTP | other *** search
/ Magnum One / Magnum One (Mid-American Digital) (Disc Manufacturing).iso / d18 / nrpas13.arc / BICO.PAS < prev    next >
Pascal/Delphi Source File  |  1991-05-01  |  106b  |  5 lines

  1. FUNCTION bico(n,k: integer): real;
  2. BEGIN
  3.    bico := round(exp(factln(n)-factln(k)-factln(n-k)));
  4. END;
  5.